home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / rexx / 315 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  1.1 KB

  1. Path: homer.alpha.net!usenet
  2. From: ldreher@execpc.com (Larry Dreher)
  3. Newsgroups: comp.lang.rexx,comp.os.os2.programmer.misc
  4. Subject: Rexx Access to OS/2 EA's
  5. Date: 16 Jan 1996 22:01:50 GMT
  6. Organization: Alpha.net -- Milwaukee, WI
  7. Distribution: inet
  8. Message-ID: <4dh78e$lgq@homer.alpha.net>
  9. NNTP-Posting-Host: mgic7.mgic.com
  10. X-Newsreader: NeoLogic News for OS/2 [version: 4.2]
  11.  
  12. I'm trying to write a simple rexx program that will display a list of files 
  13. along with assorted OS/2 EA's.  The SysGetEA 
  14. function seems to be what I need more doc to get it to work. 
  15.  
  16. This is the example from the rexx reference:
  17.  
  18.   Examples:
  19.   
  20.     /* Code    */
  21.     if SysGetEA("C:\CONFIG.SYS", ".type", "TYPEINFO") = 0 then do
  22.       parse var typeinfo 11 type
  23.       say type
  24.       end
  25.     /* Output */
  26.     OS/2 Command File
  27.   
  28. I know that the 11 skips 10 characters before type and I learned by
  29. trial and error that I can use ".subject" with a value of 5 on the parse 
  30. statement but is this actually documented somewhere?
  31.  
  32. What about accessing comments, history, or any unique EA's I might want to 
  33. create?
  34.  
  35. Any help is appreciated.
  36.  
  37. larry_dreher@mgic.com
  38.  
  39.  
  40.  
  41.  
  42.  
  43.